home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
Exes
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-06-20
|
133 b
|
12 lines
|
[
TEXT/TRUE
]
! Print pattern of x's.
!
FOR row = 1 to 6
FOR xcount = 1 to row
PRINT "x";
NEXT xcount
PRINT
NEXT row
END